home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.3 Development Libraries / SGI IRIX 6.3 Development Libraries.iso / dist / dist6.3 / ViewKit_dev.idb / usr / include / Vk / VkRadioGroup.h.z / VkRadioGroup.h
C/C++ Source or Header  |  1996-09-20  |  2KB  |  56 lines

  1. ////////////////////////////////////////////////////////////////////////////////
  2. ///////   Copyright 1992, Silicon Graphics, Inc.  All Rights Reserved.   ///////
  3. //                                                                            //
  4. // This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;     //
  5. // the contents of this file may not be disclosed to third parties, copied    //
  6. // or duplicated in any form, in whole or in part, without the prior written  //
  7. // permission of Silicon Graphics, Inc.                                       //
  8. //                                                                            //
  9. // RESTRICTED RIGHTS LEGEND:                                                  //
  10. // Use,duplication or disclosure by the Government is subject to restrictions //
  11. // as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data     //
  12. // and Computer Software clause at DFARS 252.227-7013, and/or in similar or   //
  13. // successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -    //
  14. // rights reserved under the Copyright Laws of the United States.             //
  15. //                                                                            //
  16. ////////////////////////////////////////////////////////////////////////////////
  17. #ifndef VKRadioGroup_H
  18. #define VKRadioGroup_H
  19.  
  20. #include <Xm/Xm.h>
  21. #include <Vk/VkWidgetList.h>
  22.  
  23. class VkComponent;
  24.  
  25. class VkRadioGroup : public VkWidgetList {
  26.     
  27.   public:
  28.     
  29.      VkRadioGroup ( );
  30.     ~VkRadioGroup ( );
  31.      void add(Widget);
  32.      void add(VkComponent *);
  33.  
  34.     void clear(); // Caution: This function is not virtual wrt. to VkWidgetList
  35.                   // Due to binary compatibility issues
  36.  
  37.   protected:
  38.  
  39.      Pixel _ts, _bs, _bg;
  40.      Widget _selected;
  41.      Pixmap _selectedNormalPixmap;
  42.  
  43.      void updateSelected(Widget w);
  44.  
  45.     virtual void valueChanged ( Widget, XtPointer );
  46.     virtual void arm ( Widget, XtPointer );
  47.  
  48.   private:
  49.   
  50.     static void valueChangedCallback ( Widget, XtPointer, XtPointer );
  51.     static void armCallback ( Widget, XtPointer, XtPointer );
  52.     
  53. };
  54. #endif
  55.  
  56.